@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    width: 100%;
}


/*===Hero Page===*/
.hero-page {
    background: linear-gradient(rgba(58, 55, 55, 0.8), rgba(0, 0, 0, 0.8)), url('../assets/project-main.png');
    min-height: 70vh;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    position: relative; /* Add position relative for absolute positioning of children */
  }
  
  .hero-page .texts{
    position: absolute;
    top: 55%;
    left: 5%; /* Adjust the left value to position the text accordingly */
    transform: translate(0%, -50%);
    color: white; /* Adjust text color */
    width: 850px;
  }
  
  .hero-page .texts h1{
    font-size: 2.5rem;
    line-height: 3.0625rem;
  }
  
  .hero-page .texts p{
    margin: 14px 0;
    font-size: 1.1rem;
    line-height: 1.6875rem;
  }
  
  .hero-page .hero-page-buttons{
    display: flex;
    justify-content: space-between;
    width: 370px;
    margin-top: 20px;
  }
  
  .hero-page .hero-page-buttons a{
    color: #fff;
  }
  .hero-page .hero-page-buttons .btn{
  width: 135px;
  height: 35px;
  font-size: 14px;
  border: none;
  border-radius: 7px;
  background: #42459C;
  color: #fff;
  }
  
  
  /* Media Queries for Responsive Design */
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-page {
        min-height: 90vh;
        width: 100%;
    }
  
    .hero-page .texts {
        width: 100%;
    }
  
    .hero-page .texts h1 {
        font-size: 1.9rem; 
        line-height: 2.2rem;
    }
  
    .hero-page .texts p {
        font-size: 0.9rem; 
        line-height: 1.2rem; 
    }
  
    .hero-page .hero-page-buttons{
        width: 270px;
    }
  
    .hero-page .hero-page-buttons .btn {
        width: 100px; 
        font-size: 11px; 
    }
  }
  
  
  /* next small screen  */
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-page {
        min-height: 90vh;
        width: 100%;
    }
  
    .hero-page .texts {
        width: 50%;
    }
  
    .hero-page .texts h1 {
        font-size: 1.6rem; 
        line-height: 2rem; 
    }
  
    .hero-page .texts p {
        font-size: 0.9rem; 
        line-height: 1.2rem; 
    }
  
    .hero-page .hero-page-buttons{
        width: 270px;
    }
  
    .hero-page .hero-page-buttons .btn {
        width: 90px; 
        font-size: 9px; 
    }
  }
  
  
  /* small screen size */
  @media only screen and (min-width: 600px) and (max-width: 767px) {
    .hero-page .texts {
        width: 80%;
    }
  
    .hero-page .texts h1 {
        font-size: 1.5rem; 
        line-height: 1.9rem; 
    }
  
    .hero-page .texts p {
        font-size: 0.7rem; 
        line-height: 1rem; 
    }
  
    .hero-page .hero-page-buttons{
        width: 250px;
    }
  
    .hero-page .hero-page-buttons .btn {
        width: 90px; 
        font-size: 9px; 
    }
  }
  
  
  
  /* very small screen  */
  @media only screen and (max-width: 599px) {
  
    .hero-page {
        min-height: 60vh;
        width: 100%;
    }
  
  
    .hero-page .texts {
        width: 70%;
    }
  
    .hero-page .texts h1 {
        font-size: 1.3rem;
        line-height: 1.8rem;
    }
  
    .hero-page .texts p {
        font-size: 0.6rem;
        line-height: 1rem;
    }
  
    .hero-page .hero-page-buttons{
        width: 230px;
    }
  
    .hero-page .hero-page-buttons .btn {
        width: 85px;
        font-size: 8px;
    }
  }
  
  

  





/* Services Section */

/* .services{
    max-width: 100%;
    min-height: auto;
}

.services .texts{
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    line-height: 50px;
}

.services-all{
    display: flex;
    grid-gap: 35px;
    margin: 30px;
}

.services-list{
    width: 600px;
    align-items: center;
    text-align: center;
    justify-self: center;
    margin-bottom: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
}

.services-list:hover {
    transform: scale(1.03);
}

.services-list img{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    object-fit: cover;
}

.services-list .big-image-1{
    background-image: url('../assets/web.jpg');
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}


.services-list .small-image{
    display: none;
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-400%);
}

.services-list .small-image-1{
    display: none;
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-400%);
}

.services-list .big-image-2{
    background-image: url('../assets/mobile.jpg');
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.services-list .big-image-3{
    background-image: url('../assets/teaching.jpg');
    aspect-ratio: 16/9;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.services-list .services-text{
    padding: 18px;
    margin-top: 5px;
}

.services-list .services-text h3{
    margin-bottom: 10px;
    color: #2D3192;
    font-size: 20px;
}

.services-list .services-text p{
    line-height: 20px;
    font-size: 14px;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .services-all{
        display: flex;
        grid-gap: 25px;
        margin: 30px;
    }

    .services-list{
        width: 600px;
    }

    .services-list .services-text{
        padding: 15px;
        margin-top: 5px;
    }
    
    .services-list .services-text h3{
        margin-bottom: 10px;
        color: #2D3192;
        font-size: 17px;
    }
    
    .services-list .services-text p{
        line-height: 17px;
        font-size: 12px;
    }
    

}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    .services-all{
        display: flex;
        grid-gap: 20px;
        margin: 30px;
    }

    .services-list{
        width: 600px;
    }

    .services-list .services-text{
        padding: 13px;
        margin-top: 5px;
    }
    
    .services-list .services-text h3{
        margin-bottom: 10px;
        color: #2D3192;
        font-size: 14px;
    }
    
    .services-list .services-text p{
        line-height: 14px;
        font-size: 11px;
    }
    

}

@media only screen and (max-width: 599px) {
    .services-all{
        display: block;
        grid-gap: 17px;
        margin: 30px;
        justify-items: center;
    }

    .services-list{
        width: 100%;
    }

    .services-list .services-text{
        padding: 10px;
        margin-top: 3px;
    }
    
    .services-list .services-text h3{
        margin-bottom: 10px;
        color: #2D3192;
        font-size: 12px;
    }
    
    .services-list .services-text p{
        line-height: 11px;
        font-size: 9px;
    }
    
} */
.services{
    max-width: 100%;
    min-height: auto;
  }
  
  .services .texts{
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    line-height: 40px;
  }
  .services .texts h2{
    font-size: 2rem;
    font-weight: bold;
    
  }
  .services .texts .services-p{
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;  
  }
  
  .services-all{
    display: flex;
    grid-gap: 35px;
    margin: 30px;
  }
  
  .services-list{
    height: fit-content;
    width: 600px;
    align-items: center;
    text-align: center;
    justify-self: center;
    margin-bottom: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
    margin-top: -60px;
  }
  
  
  .services-list .big-image-1{
    background-image: url('../assets/web.jpg');
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
  }
  
  
  .services-list .small-image{
    display: none;
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-400%);
  }
  
  .services-list .small-image-1{
    display: none;
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-400%);
  }
  
  .services-list .big-image-2{
    background-image: url('../assets/mobile.jpg');
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
  }
  
  .services-list .big-image-3{
    background-image: url('../assets/teaching.jpg');
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
  }
  .services-list .big-image-4{
    background-image: url('../assets/internship.jpg');
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
  }
  .services-list .big-image-5{
    background-image: url('../assets/technical.jpg');
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
  }
  .services-list .big-image-6{
    background-image: url('../assets/consulting.jpg');
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
  }
  
  .services-list .services-text{
    padding: 18px;
    margin-top: 5px;
    color: white;
    background-color: #2D3192;
  }
  
  .services-list .services-text h3{
    margin-bottom: 10px;
    color: white;
    font-size: 20px;
  }
  
  .services-list .services-text p{
    line-height: 20px;
    font-size: 14px;
  }
  
  
  .services .btn-services {
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #42459C;
    padding: 10px 20px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px;
    
  }
  .btn-services {
    text-align: center;
  }
  .btn-services svg {
    
    fill: #42459C;
  }
  /* Additional CSS for testimonial navigation arrows */
  .testimonial-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 500px; /* Adjust width as needed */
    margin-top: 20px;
    font-size: 24px;
    color: #2d3192; /* Arrow color */
  }
  
  .prev-arrow, .next-arrow {
    cursor: pointer;
  }
  
  .prev-arrow:hover, .next-arrow:hover {
    color: #3d3d3d; /* Hover color */
  }
  
  @media screen and (max-width: 1200px) {
    .services-list {
      width: 80%; /* adjust as needed */
    }
  }
  
  @media screen and (max-width: 992px) {
    .services-list {
      width: 70%; /* adjust as needed */
      margin-top: -60px;
      
  
    }
    .services-list .services-text {
      padding: 5px;
      padding-bottom: 3px;
  
    }
  }
  
  @media screen and (max-width: 768px) {
    .services-list {
      width: 60%; /* adjust as needed */
    }
  }
  
  @media screen and (max-width: 600px) {
    .services-all {
      flex-direction: column;
    }
    .services-list {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 498px) {
    .services-all {
      flex-direction: column;
    }
    .services-list {
      width: 100%;
    }
  }

  /* Contact Us Section */
.contact-us-small{
    width: 100%;
    min-height: 40vh;
    position: relative;
    text-align: center;
    background-color: rgba(24, 25, 31, 0.5);
  }
  
  .contact-us-small::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/rectangle-20-1png.png') center/cover no-repeat;
    opacity: 0.8;
    z-index: -1;
  }
  
  .contact-us-small-all{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
  }
  
  .contact-us-small-all h3{
    line-height: 25px;
    margin-bottom: 35px;
    font-size: 1rem;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
  
  }
  
  @media only screen and (min-width: 600px) and (max-width: 767px) {
    .contact-us-small-all h3{
      line-height: 20px;
      margin-bottom: 35px;
      font-size: 0.8rem;
    }
  }
  
  @media only screen and (max-width: 599px) {
    .contact-us-small-all h3{
      line-height: 17px;
      margin-bottom: 30px;
      font-size: 0.7rem;
    }
  
    .contact-us-small-all{
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
  }
  }


.email-form {
    display: flex;
}

@media only screen and (max-width: 599px) {
  .email-form {
    flex-direction: column;
  }
}

.email-form input[type="email"] {
    flex: 1;
    margin-right: 10px; /* Adjust as needed */
}
